.img-minio{
    /* width: 1310px; */
    height: 1600px;
    background-color: #371e43;
    padding: 30px;
    color: rgb(172, 163, 163);
    margin: 30px auto;
    display: flex;
}
.img-minio img{
    /* width: 300px;
    height: 200px;
    object-fit: contain;
    background-color: pink; */
    width: 100%; /* 让图片宽度适应容器 */  
    height: auto; /* 保持图片比例 */  
    position: absolute; /* 使用绝对定位 */  
    top: 50%; /* 向上偏移图片自身高度的一半 */  
    left: 50%; /* 向左偏移图片自身宽度的一半 */  
    transform: translate(-50%, -50%); /* 向回移动自身宽高的一半，实现居中 */  
    object-fit: cover; /* 确保图片覆盖整个容器，可能会被裁剪 */  
}
.img-minio ul{
    width: 100%;
}
.img-minio ul li{
    width: 19%;
    height: 12%;
    display: inline-block;
    margin-right: 10px;
    margin-top: 30px;
    overflow: hidden; /* 确保超出部分不可见 */  
    position: relative;
    /* background-color: #a075ad; */
}